put foo && "Reading from disk:" && getAt(PathList, x)
if foo then
exit repeat
end if
if gMyPath = "EOL" then
CantFindCD()
end if
end repeat
else
set gMyPath to "SSHOTS:FILES:"
set foo to ReadCDTestFile()
put foo
if not foo then
CantFindCD()
end if
end if
end
on ReadCDTestFile
global gFile, gMyPath, gTheProblem
put "READ CD ROUTINE"
if objectp(gFile) then
gFile(mdispose)
end if
if the machineType = 256 then
set TestPath to gMyPath & "WXYWXY.TXT"
else
set TestPath to gMyPath & "WXYWXY.TXT"
end if
set gFile to FileIO(mnew, "read", TestPath)
if not objectp(gFile) then
put "NOT found"
return 0
else
gFile(mdispose)
put "Found!"
setAt(the searchPath, 1, gMyPath)
return 1
end if
end
on CantFindCD
if the machineType = 256 then
alert("You don't seem to have the Satin Shots CD-ROM loaded! Please make sure the CD is in the drive." & RETURN & RETURN & "Then restart the application.")
else
alert("You don't seem to have the Satin Shots CD-ROM loaded! Please make sure the CD is in the drive and that the" && QUOTE & "Satin Shots" & QUOTE && "icon appears on the desktop." & RETURN & RETURN & "Then restart the application.")